2024-08-31 11:51:28,739 [ 460536 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:42, check_args_and_update_paths) 2024-08-31 11:51:28,739 [ 460536 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:86, check_args_and_update_paths) 2024-08-31 11:51:28,739 [ 460536 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:97, check_args_and_update_paths) 2024-08-31 11:51:28,739 [ 460536 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:99, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_51fw0a --privileged --dns-search='.' --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=2cffe1eae894 -e DOCKER_BASE_TAG=1d1c87eee2db -e DOCKER_KERBERIZED_HADOOP_TAG=ce74919e88f5 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=a2d3dc777d0c -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_storage_s3_queue/test.py::test_upgrade -vvv" altinityinfra/integration-tests-runner:9d492c2eec24 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: reportlog-0.4.0, timeout-2.2.0, repeat-0.9.3, order-1.0.1, xdist-3.5.0, random-0.2 timeout: 900.0s timeout method: signal timeout func_only: False collecting ... collected 1 item test_storage_s3_queue/test.py::test_upgrade FAILED [100%] =================================== FAILURES =================================== _________________________________ test_upgrade _________________________________ self = start_wait_sec = 293.5623564720154 def wait_start(self, start_wait_sec): start_time = time.time() last_err = None while True: try: pid = self.get_process_pid("clickhouse") if pid is None: raise Exception("ClickHouse server is not running. Check logs.") > exec_query_with_retry(self, "select 20", retry_count=10, silent=True) helpers/cluster.py:3849: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/test_tools.py:159: in exec_query_with_retry raise exception helpers/test_tools.py:147: in exec_query_with_retry res = instance.query(query, timeout=30, settings=settings) helpers/cluster.py:3450: in query return self.client.query( helpers/client.py:36: in wrap return func(self, *args, **kwargs) helpers/client.py:74: in query ).get_answer() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def get_answer(self): self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT) self.stdout_file.seek(0) self.stderr_file.seek(0) stdout = self.stdout_file.read().decode("utf-8", errors="replace") stderr = self.stderr_file.read().decode("utf-8", errors="replace") if ( self.timer is not None and not self.process_finished_before_timeout and not self.ignore_error ): logging.debug(f"Timed out. Last stdout:{stdout}, stderr:{stderr}") raise QueryTimeoutExceedException("Client timed out!") if ( self.process.returncode != 0 or self.remove_trash_from_stderr(stderr) ) and not self.ignore_error: > raise QueryRuntimeException( "Client failed! Return code: {}, stderr: {}".format( self.process.returncode, stderr ), self.process.returncode, stderr, ) E helpers.client.QueryRuntimeException: Client failed! Return code: 210, stderr: Code: 210. DB::NetException: Connection refused (172.16.1.10:9000). (NETWORK_ERROR) helpers/client.py:239: QueryRuntimeException During handling of the above exception, another exception occurred: started_cluster = def test_upgrade(started_cluster): node = started_cluster.instances["old_instance"] table_name = f"test_upgrade" dst_table_name = f"{table_name}_dst" keeper_path = f"/clickhouse/test_{table_name}" files_path = f"{table_name}_data" files_to_generate = 10 create_table( started_cluster, node, table_name, "ordered", files_path, additional_settings={ "keeper_path": keeper_path, }, ) total_values = generate_random_files( started_cluster, files_path, files_to_generate, start_ind=0, row_num=1 ) create_mv(node, table_name, dst_table_name) def get_count(): return int(node.query(f"SELECT count() FROM {dst_table_name}")) expected_rows = 10 for _ in range(20): if expected_rows == get_count(): break time.sleep(1) assert expected_rows == get_count() > node.restart_with_latest_version() test_storage_s3_queue/test.py:1438: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helpers/cluster.py:4210: in restart_with_latest_version self.wait_start(time_left) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = start_wait_sec = 293.5623564720154 def wait_start(self, start_wait_sec): start_time = time.time() last_err = None while True: try: pid = self.get_process_pid("clickhouse") if pid is None: raise Exception("ClickHouse server is not running. Check logs.") exec_query_with_retry(self, "select 20", retry_count=10, silent=True) return except QueryRuntimeException as err: last_err = err pid = self.get_process_pid("clickhouse") if pid is not None: logging.warning(f"ERROR {err}") else: > raise Exception("ClickHouse server is not running. Check logs.") E Exception: ClickHouse server is not running. Check logs. helpers/cluster.py:3857: Exception ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:['docker ps | wc -l'] (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Stdout:1 (cluster.py:116, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : No running containers (conftest.py:92, cleanup_environment) 2024-08-31 11:51:31 [ 491 ] DEBUG : Pruning Docker networks (conftest.py:94, cleanup_environment) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:['docker network prune --force'] (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:["sysctl net.ipv4.ip_local_port_range='55000 65535'"] (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:116, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_KERBEROS_KDC_TAG 9391ecdee8d7 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_TESTS_SERVER_BIN_PATH /clickhouse (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV MSAN_OPTIONS abort_on_error=1 poison_in_dtor=1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV JAVA_TOOL_OPTIONS -Djdk.attach.allowAttachSelf=true (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV TSAN_OPTIONS halt_on_error=1 abort_on_error=1 history_size=7 memory_limit_mb=46080 second_deadlock_stack=1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV HOSTNAME b8c491178ce0 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV SHLVL 0 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV HOME /root (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV OLDPWD / (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_HELPER_TAG 2cffe1eae894 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV PYTHONUNBUFFERED 1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_PYTHON_BOTTLE_TAG a2d3dc777d0c (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV UBSAN_OPTIONS print_stacktrace=1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV PYTEST_ADDOPTS -rfEps --run-id=2 --color=no --durations=0 test_storage_s3_queue/test.py::test_upgrade -vvv (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_LIBRARY_BRIDGE_BINARY_PATH /clickhouse-library-bridge (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV COMPOSE_HTTP_TIMEOUT 600 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_MYSQL_PHP_CLIENT_TAG 88be89c1e3b6 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_DOTNET_CLIENT_TAG 11de0b29a15d (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_TESTS_CLIENT_BIN_PATH /clickhouse (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_MYSQL_JS_CLIENT_TAG 41ba7c2ec2a1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_USE_OLD_ANALYZER 1 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV PATH /spark-3.3.2-bin-hadoop3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_KERBERIZED_HADOOP_TAG ce74919e88f5 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_CHANNEL stable (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_CLIENT_TIMEOUT 300 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_POSTGRESQL_JAVA_CLIENT_TAG a4eff5c7f4d6 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_NGINX_DAV_TAG b55ac9cd7519 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_MYSQL_GOLANG_CLIENT_TAG 9bec2a638e6e (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV PWD /ClickHouse/tests/integration (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_MYSQL_JAVA_CLIENT_TAG 766bff31cfe4 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_ODBC_BRIDGE_BINARY_PATH /clickhouse-odbc-bridge (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV CLICKHOUSE_TESTS_BASE_CONFIG_DIR /clickhouse-config (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV TZ Etc/UTC (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV JAVA_PATH /usr/lib/jvm/java-11-openjdk-amd64/bin/java (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV DOCKER_BASE_TAG 1d1c87eee2db (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV SPARK_HOME /spark-3.3.2-bin-hadoop3 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV LC_CTYPE C.UTF-8 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV INTEGRATION_TESTS_RUN_ID 2 (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : ENV PYTEST_CURRENT_TEST test_storage_s3_queue/test.py::test_upgrade (setup) (cluster.py:395, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : CLUSTER INIT base_config_dir:/clickhouse-config (cluster.py:691, __init__) 2024-08-31 11:51:31 [ 491 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1665, add_instance) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup Keeper (cluster.py:977, setup_keeper_cmd) 2024-08-31 11:51:31 [ 491 ] DEBUG : Cluster name: project_name:rootteststorages3queue. Added instance name:instance tag:1d1c87eee2db base_cmd:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1947, add_instance) 2024-08-31 11:51:31 [ 491 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1665, add_instance) 2024-08-31 11:51:31 [ 491 ] DEBUG : Cluster name: project_name:rootteststorages3queue. Added instance name:instance2 tag:1d1c87eee2db base_cmd:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1947, add_instance) 2024-08-31 11:51:31 [ 491 ] DEBUG : clickhouse_start_command: clickhouse server --config-file=/etc/clickhouse-server/{main_config_file} --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log (cluster.py:1665, add_instance) 2024-08-31 11:51:31 [ 491 ] DEBUG : Cluster name: project_name:rootteststorages3queue. Added instance name:old_instance tag:23.8.11.29.altinitystable base_cmd:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml'] docker_compose_yml_dir:/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/ (cluster.py:1947, add_instance) 2024-08-31 11:51:31 [ 491 ] INFO : Starting cluster... (test.py:116, started_cluster) 2024-08-31 11:51:31 [ 491 ] INFO : Running tests in /ClickHouse/tests/integration/test_storage_s3_queue/test.py (cluster.py:2657, start) 2024-08-31 11:51:31 [ 491 ] DEBUG : Cluster start called. is_up=False (cluster.py:2664, start) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker networks for project rootteststorages3queue are NETWORK ID NAME DRIVER SCOPE (cluster.py:775, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker containers for project rootteststorages3queue are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:783, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker volumes for project rootteststorages3queue are DRIVER VOLUME NAME (cluster.py:791, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Cleanup called (cluster.py:796, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker networks for project rootteststorages3queue are NETWORK ID NAME DRIVER SCOPE (cluster.py:775, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker containers for project rootteststorages3queue are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:783, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Docker volumes for project rootteststorages3queue are DRIVER VOLUME NAME (cluster.py:791, print_all_docker_pieces) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:docker container list --all --filter name='^/rootteststorages3queue_.*_1$' --format '{{.ID}}:{{.Names}}' (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Unstopped containers: {} (cluster.py:810, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : No running containers for project: rootteststorages3queue (cluster.py:824, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Trying to prune unused networks... (cluster.py:830, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Trying to prune unused images... (cluster.py:846, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:['docker', 'image', 'prune', '-f'] (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:116, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Images pruned (cluster.py:849, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Trying to prune unused volumes... (cluster.py:855, cleanup) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:['docker volume ls | wc -l'] (cluster.py:108, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Stdout:1 (cluster.py:116, run_and_check) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup directory for instance: instance (cluster.py:2677, start) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4377, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for common tests configuration (cluster.py:4382, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy common configuration from helpers (cluster.py:4402, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Generate and write macros file (cluster.py:4435, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/zookeeper.xml', '/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/configs/config.d (cluster.py:4465, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/database (cluster.py:4482, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/logs (cluster.py:4493, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon; coproc tail -f /dev/null; wait $$!" (cluster.py:4578, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup directory for instance: instance2 (cluster.py:2677, start) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4377, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for common tests configuration (cluster.py:4382, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy common configuration from helpers (cluster.py:4402, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Generate and write macros file (cluster.py:4435, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_storage_s3_queue/configs/s3queue_log.xml'] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/configs/config.d (cluster.py:4465, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/database (cluster.py:4482, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/logs (cluster.py:4493, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon; coproc tail -f /dev/null; wait $$!" (cluster.py:4578, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup directory for instance: old_instance (cluster.py:2677, start) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4377, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Create directory for common tests configuration (cluster.py:4382, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy common configuration from helpers (cluster.py:4402, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Generate and write macros file (cluster.py:4435, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/configs/config.d (cluster.py:4465, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/database (cluster.py:4482, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/logs (cluster.py:4493, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon; coproc tail -f /dev/null; wait $$!" (cluster.py:4578, create_dir) 2024-08-31 11:51:31 [ 491 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:1d1c87eee2db', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/coordination', 'MINIO_CERTS_DIR': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/certs', 'MINIO_DATA_DIR': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/data', 'MINIO_PORT': '9001', 'SSL_CERT_FILE': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/certs/public.crt'} stored in /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env (cluster.py:81, _create_env_file) 2024-08-31 11:51:31 [ 491 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2024-08-31 11:51:31 [ 491 ] DEBUG : No config file found (config.py:28, find_config_file) 2024-08-31 11:51:31 [ 491 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2024-08-31 11:51:31 [ 491 ] DEBUG : No config file found (config.py:28, find_config_file) 2024-08-31 11:51:31 [ 491 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:546, _make_request) 2024-08-31 11:51:31 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml', 'pull'] (cluster.py:108, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo3 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy2 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo2 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling old_instance ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling resolver ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling minio1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance2 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance ... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy2 ... pulling from altinityinfra/s3-proxy (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy2 ... digest: sha256:78dd226aa94f0f30c2... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy2 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy2 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling resolver ... pulling from altinityinfra/python... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling resolver ... digest: sha256:6004f5bd254dd16f55... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling resolver ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling resolver ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance2 ... pulling from altinityinfra/integr... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance2 ... digest: sha256:528fcf9f160536c036... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance2 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance2 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling minio1 ... pulling from minio/minio (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling minio1 ... digest: sha256:6262bc9a2730eeaf16... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling minio1 ... status: image is up to date for m... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling minio1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling old_instance ... pulling from altinity/clickhouse-... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling old_instance ... digest: sha256:a91987eab83bdc8fa5... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling old_instance ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling old_instance ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo3 ... pulling from altinityinfra/integr... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo3 ... digest: sha256:528fcf9f160536c036... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo3 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo3 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo2 ... pulling from altinityinfra/integr... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo2 ... digest: sha256:528fcf9f160536c036... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo2 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo2 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo1 ... pulling from altinityinfra/integr... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo1 ... digest: sha256:528fcf9f160536c036... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo1 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling zoo1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance ... pulling from altinityinfra/integr... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance ... digest: sha256:528fcf9f160536c036... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling instance ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy1 ... pulling from altinityinfra/s3-proxy (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy1 ... digest: sha256:78dd226aa94f0f30c2... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy1 ... status: image is up to date for a... (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Stderr:Pulling proxy1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:53 [ 491 ] DEBUG : Setup ZooKeeper (cluster.py:2719, start) 2024-08-31 11:51:53 [ 491 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/coordination', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/log', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/config', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/coordination'] (cluster.py:2720, start) 2024-08-31 11:51:53 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--verbose', 'up', '-d'] (cluster.py:108, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.config.config.find: Using configuration files: /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: docker-compose version 1.29.2, build unknown (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:docker-py version: (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:CPython version: 3.10.12 (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:OpenSSL version: OpenSSL 3.0.2 15 Mar 2022 (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: Docker base_url: http+docker://localhost (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: Docker version: Platform={'Name': 'Docker Engine - Community'}, Components=[{'Name': 'Engine', 'Version': '23.0.6', 'Details': {'ApiVersion': '1.42', 'Arch': 'amd64', 'BuildTime': '2023-05-05T21:18:13.000000000+00:00', 'Experimental': 'false', 'GitCommit': '9dbdbd4', 'GoVersion': 'go1.19.9', 'KernelVersion': '5.15.0-119-generic', 'MinAPIVersion': '1.12', 'Os': 'linux'}}, {'Name': 'containerd', 'Version': '1.7.18', 'Details': {'GitCommit': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e'}}, {'Name': 'runc', 'Version': '1.7.18', 'Details': {'GitCommit': 'v1.1.13-0-g58aa920'}}, {'Name': 'docker-init', 'Version': '0.19.0', 'Details': {'GitCommit': 'de40ad0'}}], Version=23.0.6, ApiVersion=1.42, MinAPIVersion=1.12, GitCommit=9dbdbd4, GoVersion=go1.19.9, Os=linux, Arch=amd64, KernelVersion=5.15.0-119-generic, BuildTime=2023-05-05T21:18:13.000000000+00:00 (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network <- ('rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker info <- () (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker info -> {'Architecture': 'x86_64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'BridgeNfIp6tables': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'BridgeNfIptables': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CPUSet': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CPUShares': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CgroupDriver': 'cgroupfs', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CgroupVersion': '2', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'ContainerdCommit': {'Expected': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'ID': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e'}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Containers': 0, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network <- ('rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.network.ensure: Creating network "rootteststorages3queue_default" with the default driver (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_network <- (name='rootteststorages3queue_default', driver=None, options=None, ipam=None, internal=False, enable_ipv6=False, labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.network': 'default', 'com.docker.compose.version': '1.29.2'}, attachable=True, check_duplicate=True) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_network -> {'Id': '6fd8a67b791987689c25db4eabfa526ba9e17f3958786b631d30c3bc4d160036', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Warning': ''} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, , } (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='zoo1', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='zoo1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='zoo2', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='zoo2', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=zoo3', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: 10929acfc798d835c0489224d480301d8a9c63d58f6e0dd56e18523965d1131f (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=['attempts:2', 'timeout:1', 'inet6', 'rotate'], dns_search=None, restart_policy={'Name': 'always', 'MaximumRetryCount': 0}, runtime=None, cap_add=['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=['label:disable'], ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=[{'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/log', 'Type': 'bind', 'ReadOnly': None}], device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Mounts': [{'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Target': '/var/lib/clickhouse-keeper', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Type': 'bind'}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: {'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (entrypoint='clickhouse keeper --config=/etc/clickhouse-keeper/keeper_config1.xml --log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log --errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log', image='altinityinfra/integration-test:1d1c87eee2db', user='0', volumes={}, name='rootteststorages3queue_zoo1_1', detach=True, environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'zoo1', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_keeper.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': '10929acfc798d835c0489224d480301d8a9c63d58f6e0dd56e18523965d1131f'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'RestartPolicy': {'Name': 'always', 'MaximumRetryCount': 0}, 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], 'SecurityOpt': ['label:disable'], 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}, 'Mounts': [{'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/log', 'Type': 'bind', 'ReadOnly': None}]}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['zoo1'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo3_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='zoo3', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='zoo3', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: b9775da022573831b8961462b7ddfa8fd6b2b8ddb456e177f46e83472cd96b1a (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=['attempts:2', 'timeout:1', 'inet6', 'rotate'], dns_search=None, restart_policy={'Name': 'always', 'MaximumRetryCount': 0}, runtime=None, cap_add=['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=['label:disable'], ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=[{'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/log', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/coordination', 'Type': 'bind', 'ReadOnly': None}], device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Mounts': [{'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/log', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Target': '/var/log/clickhouse-keeper', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Type': 'bind'}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: {'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (entrypoint='clickhouse keeper --config=/etc/clickhouse-keeper/keeper_config2.xml --log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log --errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log', image='altinityinfra/integration-test:1d1c87eee2db', user='0', volumes={}, name='rootteststorages3queue_zoo2_1', detach=True, environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'zoo2', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_keeper.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': 'b9775da022573831b8961462b7ddfa8fd6b2b8ddb456e177f46e83472cd96b1a'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'RestartPolicy': {'Name': 'always', 'MaximumRetryCount': 0}, 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], 'SecurityOpt': ['label:disable'], 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}, 'Mounts': [{'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/log', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper2/coordination', 'Type': 'bind', 'ReadOnly': None}]}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['zoo2'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/integration-test:1d1c87eee2db') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': 'f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': ['/bin/sh', '-c', 'sleep 1'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: bd964b92db7cc6801acb21b7daba1cae8e96d43eeedbe33666c78c76228b7f3d (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=['attempts:2', 'timeout:1', 'inet6', 'rotate'], dns_search=None, restart_policy={'Name': 'always', 'MaximumRetryCount': 0}, runtime=None, cap_add=['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=['label:disable'], ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=[{'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/log', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/coordination', 'Type': 'bind', 'ReadOnly': None}], device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Mounts': [{'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Source': '/clickhouse', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Target': '/usr/bin/clickhouse', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Type': 'bind'}, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: {'ReadOnly': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (entrypoint='clickhouse keeper --config=/etc/clickhouse-keeper/keeper_config3.xml --log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log --errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log', image='altinityinfra/integration-test:1d1c87eee2db', user='0', volumes={}, name='rootteststorages3queue_zoo3_1', detach=True, environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'zoo3', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_keeper.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': 'bd964b92db7cc6801acb21b7daba1cae8e96d43eeedbe33666c78c76228b7f3d'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'RestartPolicy': {'Name': 'always', 'MaximumRetryCount': 0}, 'CapAdd': ['SYS_PTRACE', 'NET_ADMIN', 'IPC_LOCK', 'SYS_NICE'], 'DnsOptions': ['attempts:2', 'timeout:1', 'inet6', 'rotate'], 'SecurityOpt': ['label:disable'], 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}, 'Mounts': [{'Target': '/usr/bin/clickhouse', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/usr/bin/clickhouse-keeper', 'Source': '/clickhouse', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/etc/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/config', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper1/coordination', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/log/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/log', 'Type': 'bind', 'ReadOnly': None}, {'Target': '/var/lib/clickhouse-keeper', 'Source': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/keeper3/coordination', 'Type': 'bind', 'ReadOnly': None}]}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['zoo3'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config1.xml', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a', 'rootteststorages3queue_default', aliases=['f502a7682fd3', 'zoo1'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config2.xml', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config3.xml', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d', 'rootteststorages3queue_default', aliases=['281f05368104', 'zoo2'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f', 'rootteststorages3queue_default', aliases=['6ce9f18c6518', 'zoo3'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f') (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='zoo1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='zoo2', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='zoo3', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_zoo3_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:51:54 [ 491 ] DEBUG : Wait ZooKeeper to start (cluster.py:2380, wait_zookeeper_to_start) 2024-08-31 11:51:54 [ 491 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2003, get_instance_ip) 2024-08-31 11:51:54 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_zoo1_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:51:54 [ 491 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3140, get_kazoo_client) 2024-08-31 11:51:54 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:54 [ 491 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2024-08-31 11:51:54 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:54 [ 491 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2024-08-31 11:51:55 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:55 [ 491 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2024-08-31 11:51:55 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:55 [ 491 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2024-08-31 11:51:56 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:56 [ 491 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2024-08-31 11:51:58 [ 491 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2003, get_instance_ip) 2024-08-31 11:51:58 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_zoo2_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:51:58 [ 491 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3140, get_kazoo_client) 2024-08-31 11:51:58 [ 491 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2024-08-31 11:51:58 [ 491 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2003, get_instance_ip) 2024-08-31 11:51:58 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_zoo3_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:51:58 [ 491 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3140, get_kazoo_client) 2024-08-31 11:51:58 [ 491 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=10000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2024-08-31 11:51:58 [ 491 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2024-08-31 11:51:58 [ 491 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2024-08-31 11:51:58 [ 491 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2024-08-31 11:51:58 [ 491 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2024-08-31 11:51:58 [ 491 ] DEBUG : All instances of ZooKeeper started (cluster.py:2388, wait_zookeeper_to_start) 2024-08-31 11:51:58 [ 491 ] INFO : Trying to create Minio instance by command docker-compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env --project-name rootteststorages3queue --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --verbose up -d (cluster.py:2957, start) 2024-08-31 11:51:58 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--verbose', 'up', '-d'] (cluster.py:108, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.config.config.find: Using configuration files: /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: docker-compose version 1.29.2, build unknown (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:docker-py version: (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:CPython version: 3.10.12 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:OpenSSL version: OpenSSL 3.0.2 15 Mar 2022 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: Docker base_url: http+docker://localhost (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.docker_client.get_client: Docker version: Platform={'Name': 'Docker Engine - Community'}, Components=[{'Name': 'Engine', 'Version': '23.0.6', 'Details': {'ApiVersion': '1.42', 'Arch': 'amd64', 'BuildTime': '2023-05-05T21:18:13.000000000+00:00', 'Experimental': 'false', 'GitCommit': '9dbdbd4', 'GoVersion': 'go1.19.9', 'KernelVersion': '5.15.0-119-generic', 'MinAPIVersion': '1.12', 'Os': 'linux'}}, {'Name': 'containerd', 'Version': '1.7.18', 'Details': {'GitCommit': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e'}}, {'Name': 'runc', 'Version': '1.7.18', 'Details': {'GitCommit': 'v1.1.13-0-g58aa920'}}, {'Name': 'docker-init', 'Version': '0.19.0', 'Details': {'GitCommit': 'de40ad0'}}], Version=23.0.6, ApiVersion=1.42, MinAPIVersion=1.12, GitCommit=9dbdbd4, GoVersion=go1.19.9, Os=linux, Arch=amd64, KernelVersion=5.15.0-119-generic, BuildTime=2023-05-05T21:18:13.000000000+00:00 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network <- ('rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network -> {'Attachable': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ConfigFrom': {'Network': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ConfigOnly': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Containers': {'281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d': {'EndpointID': '9cf12d719556200138bce9122f260bae4b11630c0f8a13d00c56df7b4d3db447', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv4Address': '172.16.1.3/24', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv6Address': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'MacAddress': '02:42:ac:10:01:03', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Name': 'rootteststorages3queue_zoo2_1'}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f': {'EndpointID': '7a4bcc630dbcf4b2f43262db0f6c055456e0e8143a9f28208b4ba8876fae6686', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv4Address': '172.16.1.4/24', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_volume <- ('rootteststorages3queue_data1-1') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker info <- () (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker info -> {'Architecture': 'x86_64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'BridgeNfIp6tables': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'BridgeNfIptables': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'CPUSet': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'CPUShares': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'CgroupDriver': 'cgroupfs', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'CgroupVersion': '2', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ContainerdCommit': {'Expected': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ID': 'ae71819c4f5e67bb4d5ae76a6b735f29cc25774e'}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Containers': 3, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network <- ('rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_network -> {'Attachable': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ConfigFrom': {'Network': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'ConfigOnly': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Containers': {'281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d': {'EndpointID': '9cf12d719556200138bce9122f260bae4b11630c0f8a13d00c56df7b4d3db447', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv4Address': '172.16.1.3/24', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv6Address': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'MacAddress': '02:42:ac:10:01:03', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Name': 'rootteststorages3queue_zoo2_1'}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f': {'EndpointID': '7a4bcc630dbcf4b2f43262db0f6c055456e0e8143a9f28208b4ba8876fae6686', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'IPv4Address': '172.16.1.4/24', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_volume <- ('rootteststorages3queue_data1-1') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.volume.initialize: Creating volume "rootteststorages3queue_data1-1" with default driver (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_volume <- ('rootteststorages3queue_data1-1', None, None, labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.volume': 'data1-1', 'com.docker.compose.version': '1.29.2'}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_volume -> {'CreatedAt': '2024-08-31T11:51:59Z', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Driver': 'local', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Labels': {'com.docker.compose.project': 'rootteststorages3queue', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'com.docker.compose.version': '1.29.2', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'com.docker.compose.volume': 'data1-1'}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Mountpoint': '/var/lib/docker/volumes/rootteststorages3queue_data1-1/_data', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Name': 'rootteststorages3queue_data1-1', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Options': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Scope': 'local'} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 3 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 3 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('281f05368104487d7997bf6880d34268f216dd55ade3b35cde59da1c6a3e869d') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config2.xml', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('f502a7682fd3480e0c1c173f74b72e053ad09da34b895c13df349a4f18d1350a') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config1.xml', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('6ce9f18c6518a17ff4cf95347fa0cba18900b806b2ab43bd539df90f83c2127f') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['keeper', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--config=/etc/clickhouse-keeper/keeper_config3.xml', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--log-file=/var/log/clickhouse-keeper/clickhouse-keeper.log', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--errorlog-file=/var/log/clickhouse-keeper/clickhouse-keeper.err.log'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.project.find_orphan_containers: Found orphan containers (rootteststorages3queue_zoo2_1, rootteststorages3queue_zoo1_1, rootteststorages3queue_zoo3_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up. (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('minio/minio:RELEASE.2023-09-30T07-02-29Z') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['minio'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/usr/bin/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/python-bottle:a2d3dc777d0c') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['python3'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.project._get_convergence_plans: minio1 has upstream changes (proxy1, proxy2) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'status': ['created', 'exited'], 'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'status': ['created', 'exited'], 'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.project._get_convergence_plans: resolver has upstream changes (proxy1, proxy2) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'status': ['created', 'exited'], 'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'status': ['created', 'exited'], 'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=False, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, , , } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy2', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_proxy2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='proxy2', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='proxy2', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=proxy1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_proxy1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='proxy1', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='proxy1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: 55f406bce16a81dffb1a223449ecd0fee66889620314c0f874ba727a30d969d4 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=None, dns_search=None, restart_policy=None, runtime=None, cap_add=None, cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=None, ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=None, device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NetworkMode': 'rootteststorages3queue_default', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'PortBindings': {}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'VolumesFrom': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (image='altinityinfra/s3-proxy', volumes={}, name='rootteststorages3queue_proxy2_1', detach=True, ports=['8080', '80', '443'], environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'proxy2', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_minio.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': '55f406bce16a81dffb1a223449ecd0fee66889620314c0f874ba727a30d969d4'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['proxy2'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/s3-proxy') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: 55f406bce16a81dffb1a223449ecd0fee66889620314c0f874ba727a30d969d4 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=None, dns_search=None, restart_policy=None, runtime=None, cap_add=None, cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=None, ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=None, device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NetworkMode': 'rootteststorages3queue_default', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'PortBindings': {}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'VolumesFrom': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (image='altinityinfra/s3-proxy', volumes={}, name='rootteststorages3queue_proxy1_1', detach=True, ports=['8080', '80', '443'], environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'proxy1', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_minio.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': '55f406bce16a81dffb1a223449ecd0fee66889620314c0f874ba727a30d969d4'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['proxy1'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '33f6ab6e81ea036293803072cb04686254f9f5b42fb27c1bd1f9fc6c8b002a63', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('33f6ab6e81ea036293803072cb04686254f9f5b42fb27c1bd1f9fc6c8b002a63') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '1201a9e65a3a99bfde4224da57d9e5cfe6d169fc550dcfff784871db7a4852d5', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('1201a9e65a3a99bfde4224da57d9e5cfe6d169fc550dcfff784871db7a4852d5') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NGINX_VERSION=1.27.1', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('33f6ab6e81ea036293803072cb04686254f9f5b42fb27c1bd1f9fc6c8b002a63', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['/run.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NGINX_VERSION=1.27.1', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('1201a9e65a3a99bfde4224da57d9e5cfe6d169fc550dcfff784871db7a4852d5', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('33f6ab6e81ea036293803072cb04686254f9f5b42fb27c1bd1f9fc6c8b002a63', 'rootteststorages3queue_default', aliases=['33f6ab6e81ea', 'proxy2'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('1201a9e65a3a99bfde4224da57d9e5cfe6d169fc550dcfff784871db7a4852d5', 'rootteststorages3queue_default', aliases=['1201a9e65a3a', 'proxy1'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('33f6ab6e81ea036293803072cb04686254f9f5b42fb27c1bd1f9fc6c8b002a63') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('1201a9e65a3a99bfde4224da57d9e5cfe6d169fc550dcfff784871db7a4852d5') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='proxy1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_proxy1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='proxy2', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_proxy2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {, } (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=minio1', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers <- (all=True, filters={'label': ['com.docker.compose.project=rootteststorages3queue', 'com.docker.compose.service=resolver', 'com.docker.compose.oneoff=False']}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_minio1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='minio1', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='minio1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('minio/minio:RELEASE.2023-09-30T07-02-29Z') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker containers -> (list with 0 items) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_resolver_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: {ServiceName(project='rootteststorages3queue', service='resolver', number=1)} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Starting producer thread for ServiceName(project='rootteststorages3queue', service='resolver', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/python-bottle:a2d3dc777d0c') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['minio'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/usr/bin/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('minio/minio:RELEASE.2023-09-30T07-02-29Z') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['python3'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image <- ('altinityinfra/python-bottle:a2d3dc777d0c') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['minio'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': ['/usr/bin/docker-entrypoint.sh'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: 930ec27721223e4c37e6185db9fca21e0ff552870e429816f9ce8e041d63c570 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=['rootteststorages3queue_data1-1:/data1:rw', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/certs:/certs:rw'], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=None, dns_search=None, restart_policy=None, runtime=None, cap_add=None, cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=None, ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=None, device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': ['rootteststorages3queue_data1-1:/data1:rw', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/certs:/certs:rw'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NetworkMode': 'rootteststorages3queue_default', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'PortBindings': {}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'VolumesFrom': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (command='server --console-address 127.0.0.1:19001 --address :9001 --certs-dir /certs /data1-1', environment=['MINIO_ACCESS_KEY=minio', 'MINIO_SECRET_KEY=minio123', 'MINIO_PROMETHEUS_AUTH_TYPE=public'], image='minio/minio:RELEASE.2023-09-30T07-02-29Z', volumes={'/data1': {}, '/certs': {}}, name='rootteststorages3queue_minio1_1', detach=True, ports=['9001'], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'minio1', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_minio.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': '930ec27721223e4c37e6185db9fca21e0ff552870e429816f9ce8e041d63c570'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'VolumesFrom': [], 'Binds': ['rootteststorages3queue_data1-1:/data1:rw', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/minio/certs:/certs:rw'], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['minio1'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_image -> {'Architecture': 'amd64', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Author': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Comment': 'buildkit.dockerfile.v0', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'ArgsEscaped': True, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['python3'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.service.build_container_labels: Added config hash: 00eefd2627a33bd4356751bc85fbddf102dc4107e473843617edf96d2b9ebfb2 (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config <- (links=[], port_bindings={}, binds=[], volumes_from=[], privileged=False, network_mode='rootteststorages3queue_default', devices=None, device_requests=None, dns=None, dns_opt=None, dns_search=None, restart_policy=None, runtime=None, cap_add=None, cap_drop=None, mem_limit=None, mem_reservation=None, memswap_limit=None, ulimits=None, log_config={'Type': '', 'Config': {}}, extra_hosts=None, read_only=None, pid_mode=None, security_opt=None, ipc_mode=None, cgroup_parent=None, cpu_quota=None, shm_size=None, sysctls=None, pids_limit=None, tmpfs=None, oom_kill_disable=None, oom_score_adj=None, mem_swappiness=None, group_add=None, userns_mode=None, init=None, init_path=None, isolation=None, cpu_count=None, cpu_percent=None, nano_cpus=None, volume_driver=None, cpuset_cpus=None, cpu_shares=None, storage_opt=None, blkio_weight=None, blkio_weight_device=None, device_read_bps=None, device_read_iops=None, device_write_bps=None, device_write_iops=None, mounts=None, device_cgroup_rules=None, cpu_period=None, cpu_rt_period=None, cpu_rt_runtime=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_host_config -> {'Binds': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Links': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'LogConfig': {'Config': {}, 'Type': ''}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'NetworkMode': 'rootteststorages3queue_default', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'PortBindings': {}, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'VolumesFrom': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container <- (image='altinityinfra/python-bottle:a2d3dc777d0c', tty=True, volumes={}, name='rootteststorages3queue_resolver_1', detach=True, ports=['8080'], environment=[], labels={'com.docker.compose.project': 'rootteststorages3queue', 'com.docker.compose.service': 'resolver', 'com.docker.compose.oneoff': 'False', 'com.docker.compose.project.working_dir': '/ClickHouse/tests/integration/compose', 'com.docker.compose.project.config_files': '/ClickHouse/tests/integration/compose/docker_compose_minio.yml', 'com.docker.compose.project.environment_file': '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', 'com.docker.compose.container-number': '1', 'com.docker.compose.version': '1.29.2', 'com.docker.compose.config-hash': '00eefd2627a33bd4356751bc85fbddf102dc4107e473843617edf96d2b9ebfb2'}, host_config={'NetworkMode': 'rootteststorages3queue_default', 'VolumesFrom': [], 'Binds': [], 'PortBindings': {}, 'Links': [], 'LogConfig': {'Type': '', 'Config': {}}}, networking_config={'EndpointsConfig': {'rootteststorages3queue_default': {'Aliases': ['resolver'], 'IPAMConfig': {}}}}) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '95a6ec4a6404fd2d7901bb04152a4fe08667c68731e487472066c0c35ee5498d', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('95a6ec4a6404fd2d7901bb04152a4fe08667c68731e487472066c0c35ee5498d') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker create_container -> {'Id': '7b651e83ae5e38a16e281a9427fb5d93bf7f08d5d0b4d5c445485fb4166e16ca', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Warnings': []} (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- ('7b651e83ae5e38a16e281a9427fb5d93bf7f08d5d0b4d5c445485fb4166e16ca') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': [], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdin': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'AttachStdout': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Cmd': ['python3'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Domainname': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Entrypoint': None, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Env': ['PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'LANG=C.UTF-8', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('95a6ec4a6404fd2d7901bb04152a4fe08667c68731e487472066c0c35ee5498d', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {'AppArmorProfile': '', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Args': ['server', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--console-address', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '127.0.0.1:19001', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--address', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: ':9001', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '--certs-dir', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '/certs', (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: '/data1-1'], (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr: 'Config': {'AttachStderr': False, (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:... (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network <- ('7b651e83ae5e38a16e281a9427fb5d93bf7f08d5d0b4d5c445485fb4166e16ca', 'rootteststorages3queue_default') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('95a6ec4a6404fd2d7901bb04152a4fe08667c68731e487472066c0c35ee5498d', 'rootteststorages3queue_default', aliases=['resolver', '95a6ec4a6404'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker disconnect_container_from_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network <- ('7b651e83ae5e38a16e281a9427fb5d93bf7f08d5d0b4d5c445485fb4166e16ca', 'rootteststorages3queue_default', aliases=['7b651e83ae5e', 'minio1'], ipv4_address=None, ipv6_address=None, links=[], link_local_ips=None) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('95a6ec4a6404fd2d7901bb04152a4fe08667c68731e487472066c0c35ee5498d') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker connect_container_to_network -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start <- ('7b651e83ae5e38a16e281a9427fb5d93bf7f08d5d0b4d5c445485fb4166e16ca') (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='minio1', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_minio1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.cli.verbose_proxy.proxy_callable: docker start -> None (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: ServiceName(project='rootteststorages3queue', service='resolver', number=1) (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_resolver_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.parallel_execute_iter: Finished processing: (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] DEBUG : Stderr:compose.parallel.feed_queue: Pending: set() (cluster.py:118, run_and_check) 2024-08-31 11:52:00 [ 491 ] INFO : Trying to connect to Minio... (cluster.py:2963, start) 2024-08-31 11:52:00 [ 491 ] DEBUG : get_instance_ip instance_name=minio1 (cluster.py:2003, get_instance_ip) 2024-08-31 11:52:00 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_minio1_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:00 [ 491 ] DEBUG : get_instance_ip instance_name=proxy1 (cluster.py:2003, get_instance_ip) 2024-08-31 11:52:00 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_proxy1_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:00 [ 491 ] DEBUG : Starting new HTTP connection (1): 172.16.1.8:9001 (connectionpool.py:244, _new_conn) 2024-08-31 11:52:00 [ 491 ] DEBUG : Incremented Retry for (url='/'): Retry(total=2, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2024-08-31 11:52:00 [ 491 ] WARNING : Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:871, urlopen) 2024-08-31 11:52:00 [ 491 ] DEBUG : Starting new HTTP connection (2): 172.16.1.8:9001 (connectionpool.py:244, _new_conn) 2024-08-31 11:52:00 [ 491 ] DEBUG : Incremented Retry for (url='/'): Retry(total=1, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2024-08-31 11:52:00 [ 491 ] WARNING : Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:871, urlopen) 2024-08-31 11:52:00 [ 491 ] DEBUG : Starting new HTTP connection (3): 172.16.1.8:9001 (connectionpool.py:244, _new_conn) 2024-08-31 11:52:00 [ 491 ] DEBUG : Incremented Retry for (url='/'): Retry(total=0, connect=None, read=None, redirect=None, status=None) (retry.py:517, increment) 2024-08-31 11:52:00 [ 491 ] WARNING : Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')': / (connectionpool.py:871, urlopen) 2024-08-31 11:52:00 [ 491 ] DEBUG : Starting new HTTP connection (4): 172.16.1.8:9001 (connectionpool.py:244, _new_conn) 2024-08-31 11:52:00 [ 491 ] DEBUG : Can't connect to Minio: HTTPConnectionPool(host='172.16.1.8', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')) (cluster.py:2540, wait_minio_to_start) 2024-08-31 11:52:01 [ 491 ] DEBUG : Starting new HTTP connection (5): 172.16.1.8:9001 (connectionpool.py:244, _new_conn) 2024-08-31 11:52:01 [ 491 ] DEBUG : http://172.16.1.8:9001 "GET / HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:01 [ 491 ] DEBUG : Connected to Minio. (cluster.py:2520, wait_minio_to_start) 2024-08-31 11:52:01 [ 491 ] DEBUG : http://172.16.1.8:9001 "GET /root?location= HTTP/1.1" 404 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:01 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:01 [ 491 ] DEBUG : S3 bucket 'root' created (cluster.py:2535, wait_minio_to_start) 2024-08-31 11:52:01 [ 491 ] DEBUG : http://172.16.1.8:9001 "GET /root2?location= HTTP/1.1" 404 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:01 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root2 HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:01 [ 491 ] DEBUG : S3 bucket 'root2' created (cluster.py:2535, wait_minio_to_start) 2024-08-31 11:52:01 [ 491 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker-compose --env-file /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env --project-name rootteststorages3queue --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml --file /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml up -d --no-recreate') (cluster.py:3000, start) 2024-08-31 11:52:01 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml', 'up', '-d', '--no-recreate'] (cluster.py:108, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_old_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_instance2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_old_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_instance2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : Stderr:Creating rootteststorages3queue_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:02 [ 491 ] DEBUG : ClickHouse instance created (cluster.py:3008, start) 2024-08-31 11:52:02 [ 491 ] DEBUG : get_instance_ip instance_name=instance (cluster.py:2003, get_instance_ip) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_instance_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:02 [ 491 ] DEBUG : Waiting for ClickHouse start in instance, ip: 172.16.1.11... (cluster.py:3015, start) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_instance_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:02 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:03 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/752efe591bef3f7988a749dcfda17bfd2781c26eb166001a6e6fcb48a3ec5228/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : ClickHouse instance started (cluster.py:3019, start) 2024-08-31 11:52:04 [ 491 ] DEBUG : get_instance_ip instance_name=instance2 (cluster.py:2003, get_instance_ip) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_instance2_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : Waiting for ClickHouse start in instance2, ip: 172.16.1.9... (cluster.py:3015, start) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_instance2_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/b41e1b3a776bf07ccb3ca23d338e4ab132972e0d43f74ec55fd6d19dab148e4f/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : ClickHouse instance2 started (cluster.py:3019, start) 2024-08-31 11:52:04 [ 491 ] DEBUG : get_instance_ip instance_name=old_instance (cluster.py:2003, get_instance_ip) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_old_instance_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : Waiting for ClickHouse start in old_instance, ip: 172.16.1.10... (cluster.py:3015, start) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/rootteststorages3queue_old_instance_1/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : http://localhost:None "GET /v1.42/containers/5154a4ba7d99d3881e97262b4bb76f18db298063ec815df224ce5e1101b8cf83/json HTTP/1.1" 200 None (connectionpool.py:546, _make_request) 2024-08-31 11:52:04 [ 491 ] DEBUG : ClickHouse old_instance started (cluster.py:3019, start) 2024-08-31 11:52:04 [ 491 ] INFO : Cluster started (test.py:118, started_cluster) 2024-08-31 11:52:04 [ 491 ] DEBUG : Executing query DROP DATABASE IF EXISTS test; CREATE DATABASE test; on instance (cluster.py:3449, query) 2024-08-31 11:52:04 [ 491 ] DEBUG : Executing query DROP DATABASE IF EXISTS test; CREATE DATABASE test; on instance2 (cluster.py:3449, query) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "GET /root?delimiter=&encoding-type=url&list-type=2&max-keys=1000&prefix= HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) ----------------------------- Captured stdout call ----------------------------- Generating files: [('test_upgrade_data/test_0.csv', 0), ('test_upgrade_data/test_1.csv', 1), ('test_upgrade_data/test_2.csv', 2), ('test_upgrade_data/test_3.csv', 3), ('test_upgrade_data/test_4.csv', 4), ('test_upgrade_data/test_5.csv', 5), ('test_upgrade_data/test_6.csv', 6), ('test_upgrade_data/test_7.csv', 7), ('test_upgrade_data/test_8.csv', 8), ('test_upgrade_data/test_9.csv', 9)] ------------------------------ Captured log call ------------------------------- 2024-08-31 11:52:05 [ 491 ] DEBUG : Executing query DROP TABLE IF EXISTS test_upgrade on old_instance (cluster.py:3449, query) 2024-08-31 11:52:05 [ 491 ] DEBUG : Executing query CREATE TABLE test_upgrade (column1 UInt32, column2 UInt32, column3 UInt32) ENGINE = S3Queue('http://minio1:9001/root/test_upgrade_data/', 'minio','minio123', CSV) SETTINGS s3queue_loading_retries=0,after_processing='keep',keeper_path='/clickhouse/test_test_upgrade',mode='ordered' on old_instance (cluster.py:3449, query) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_0.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_1.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_2.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_3.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_4.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_5.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_6.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_7.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_8.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : http://172.16.1.8:9001 "PUT /root/test_upgrade_data/test_9.csv HTTP/1.1" 200 0 (connectionpool.py:546, _make_request) 2024-08-31 11:52:05 [ 491 ] DEBUG : Executing query DROP TABLE IF EXISTS test_upgrade_dst; DROP TABLE IF EXISTS test_upgrade_dst_mv; CREATE TABLE test_upgrade_dst (column1 UInt32, column2 UInt32, column3 UInt32, _path String) ENGINE = MergeTree() ORDER BY column1; CREATE MATERIALIZED VIEW test_upgrade_dst_mv TO test_upgrade_dst AS SELECT *, _path FROM test_upgrade; on old_instance (cluster.py:3449, query) 2024-08-31 11:52:05 [ 491 ] DEBUG : Executing query SELECT count() FROM test_upgrade_dst on old_instance (cluster.py:3449, query) 2024-08-31 11:52:06 [ 491 ] DEBUG : Executing query SELECT count() FROM test_upgrade_dst on old_instance (cluster.py:3449, query) 2024-08-31 11:52:06 [ 491 ] DEBUG : Executing query SELECT count() FROM test_upgrade_dst on old_instance (cluster.py:3449, query) 2024-08-31 11:52:07 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill -15 clickhouse'] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:07 [ 491 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'rootteststorages3queue_old_instance_1', 'bash', '-c', 'pkill -15 clickhouse'] (cluster.py:108, run_and_check) 2024-08-31 11:52:07 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:07 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:07 [ 491 ] DEBUG : Stdout:8 (cluster.py:116, run_and_check) 2024-08-31 11:52:07 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:07 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:07 [ 491 ] DEBUG : Stdout:8 (cluster.py:116, run_and_check) 2024-08-31 11:52:08 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:08 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:08 [ 491 ] DEBUG : Stdout:8 (cluster.py:116, run_and_check) 2024-08-31 11:52:08 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:08 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:08 [ 491 ] DEBUG : Stdout:8 (cluster.py:116, run_and_check) 2024-08-31 11:52:09 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:09 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:09 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:09 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse server' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:09 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', 'cp /usr/bin/clickhouse /usr/share/clickhouse_original'] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:09 [ 491 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'rootteststorages3queue_old_instance_1', 'bash', '-c', 'cp /usr/bin/clickhouse /usr/share/clickhouse_original'] (cluster.py:108, run_and_check) 2024-08-31 11:52:09 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', 'cp /usr/share/clickhouse_fresh /usr/bin/clickhouse && chmod 777 /usr/bin/clickhouse'] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:09 [ 491 ] DEBUG : Command:['docker', 'exec', '-u', 'root', 'rootteststorages3queue_old_instance_1', 'bash', '-c', 'cp /usr/share/clickhouse_fresh /usr/bin/clickhouse && chmod 777 /usr/bin/clickhouse'] (cluster.py:108, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "echo 'restart_with_latest_version: From version' && /usr/share/clickhouse_original server --version && echo 'To version' /usr/share/clickhouse_fresh server --version"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:13 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "echo 'restart_with_latest_version: From version' && /usr/share/clickhouse_original server --version && echo 'To version' /usr/share/clickhouse_fresh server --version"] (cluster.py:108, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : Stdout:restart_with_latest_version: From version (cluster.py:116, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : Stdout:ClickHouse server version 23.8.11.29.altinitystable (altinity build). (cluster.py:116, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : Stdout:To version /usr/share/clickhouse_fresh server --version (cluster.py:116, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', 'clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon'] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:13 [ 491 ] DEBUG : Command:['docker', 'exec', '-u', '0', 'rootteststorages3queue_old_instance_1', 'bash', '-c', 'clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon'] (cluster.py:108, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:13 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : Stdout:403 (cluster.py:116, run_and_check) 2024-08-31 11:52:13 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:14 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:14 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:15 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:16 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:16 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:17 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:18 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:18 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:19 [ 491 ] DEBUG : Executing query select 20 on old_instance (cluster.py:3449, query) 2024-08-31 11:52:19 [ 491 ] DEBUG : run container_id:rootteststorages3queue_old_instance_1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2036, exec_in_container) 2024-08-31 11:52:19 [ 491 ] DEBUG : Command:['docker', 'exec', 'rootteststorages3queue_old_instance_1', 'bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:108, run_and_check) ---------------------------- Captured log teardown ----------------------------- 2024-08-31 11:52:20 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml', 'stop', '--timeout', '20'] (cluster.py:108, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_instance2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_old_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_minio1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_resolver_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_proxy1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_proxy2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo3_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_old_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_instance2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_minio1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo3_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_zoo2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_resolver_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_proxy1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Stderr:Stopping rootteststorages3queue_proxy2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/logs/stderr.log* || true'] (cluster.py:108, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/logs/stderr.log* || true'] (cluster.py:108, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Command:['bash', '-c', '[ -f /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/logs/stderr.log* || true'] (cluster.py:108, run_and_check) 2024-08-31 11:52:41 [ 491 ] DEBUG : Command:['docker-compose', '--env-file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/.env', '--project-name', 'rootteststorages3queue', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance/docker-compose.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml', '--file', '/ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_minio.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/instance2/docker-compose.yml', '--file', '/ClickHouse/tests/integration/test_storage_s3_queue/_instances_2/old_instance/docker-compose.yml', 'down', '--volumes'] (cluster.py:108, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_instance2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_old_instance_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_minio1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_resolver_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_proxy1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_proxy2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo3_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo2_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo1_1 ... (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_instance2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_proxy2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_resolver_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo3_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_proxy1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_zoo2_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_minio1_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing rootteststorages3queue_old_instance_1 ... done (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing network rootteststorages3queue_default (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stderr:Removing volume rootteststorages3queue_data1-1 (cluster.py:118, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Cleanup called (cluster.py:796, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Docker networks for project rootteststorages3queue are NETWORK ID NAME DRIVER SCOPE (cluster.py:775, print_all_docker_pieces) 2024-08-31 11:52:42 [ 491 ] DEBUG : Docker containers for project rootteststorages3queue are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:783, print_all_docker_pieces) 2024-08-31 11:52:42 [ 491 ] DEBUG : Docker volumes for project rootteststorages3queue are DRIVER VOLUME NAME (cluster.py:791, print_all_docker_pieces) 2024-08-31 11:52:42 [ 491 ] DEBUG : Command:docker container list --all --filter name='^/rootteststorages3queue_.*_1$' --format '{{.ID}}:{{.Names}}' (cluster.py:108, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Unstopped containers: {} (cluster.py:810, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : No running containers for project: rootteststorages3queue (cluster.py:824, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Trying to prune unused networks... (cluster.py:830, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Trying to prune unused images... (cluster.py:846, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Command:['docker', 'image', 'prune', '-f'] (cluster.py:108, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:116, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Images pruned (cluster.py:849, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Trying to prune unused volumes... (cluster.py:855, cleanup) 2024-08-31 11:52:42 [ 491 ] DEBUG : Command:['docker volume ls | wc -l'] (cluster.py:108, run_and_check) 2024-08-31 11:52:42 [ 491 ] DEBUG : Stdout:1 (cluster.py:116, run_and_check) ============================== slowest durations =============================== 33.66s setup test_storage_s3_queue/test.py::test_upgrade 22.60s teardown test_storage_s3_queue/test.py::test_upgrade 14.90s call test_storage_s3_queue/test.py::test_upgrade =========================== short test summary info ============================ FAILED test_storage_s3_queue/test.py::test_upgrade - Exception: ClickHouse se... ========================= 1 failed in 71.36s (0:01:11) ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 437, in subprocess.check_call(cmd, shell=True) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_51fw0a --privileged --dns-search='.' --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-odbc-bridge:/clickhouse-odbc-bridge --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/_temp/test/build/clickhouse-library-bridge:/clickhouse-library-bridge --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=2cffe1eae894 -e DOCKER_BASE_TAG=1d1c87eee2db -e DOCKER_KERBERIZED_HADOOP_TAG=ce74919e88f5 -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=a2d3dc777d0c -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS=" -rfEps --run-id=2 --color=no --durations=0 test_storage_s3_queue/test.py::test_upgrade -vvv" altinityinfra/integration-tests-runner:9d492c2eec24 ' returned non-zero exit status 1.